home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / util / cdity / MRQ.lha / MRQ / Source / RCS / MRQasm.h < prev    next >
C/C++ Source or Header  |  2000-10-16  |  1KB  |  70 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     msbethke:1.1; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    2000.01.25.16.47.14;    author msbethke;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @C header for MRQ's assembler functions
  17. @
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/* MRQasm.h
  26. ** C header for MRQ's assembler functions
  27. **
  28. ** ©1997-1999 by Matthias.Bethke <Matthias.Bethke@@gmx.net>
  29. ** You are free to modify this source or use parts of it in your
  30. ** own programs as long as they are distributed as freeware.
  31. */
  32.  
  33. /* $Id:$
  34. **
  35. ** $Log:$
  36. */
  37.  
  38. void RDF_StuffChar();
  39.  
  40. struct StuffCharParams
  41. {
  42.     LONG    Position;
  43.     LONG    DestLen;
  44.     APTR    Dest;
  45. };
  46.  
  47.  
  48. ULONG __asm __saveds rtEZRequestA_Wedge(
  49.     register __a1 char*,
  50.     register __a2 char*,
  51.     register __a3 struct rtReqInfo*,
  52.     register __a4 APTR,
  53.     register __a0 struct TagItem*);
  54.  
  55. ULONG __asm CallOldrtEZRA(
  56.     register __a1 char*,
  57.     register __a2 char*,
  58.     register __a3 struct rtReqInfo*,
  59.     register __a4 APTR,
  60.     register __a0 struct TagItem*,
  61.     register __a6 struct ReqToolsBase*);
  62.     
  63. LONG __asm CallOldERA(
  64.     register __a0 struct Window*,
  65.     register __a1 struct EasyStruct*,
  66.     register __a2 ULONG*,
  67.     register __a3 APTR,
  68.     register __a6 struct IntuitionBase*);
  69. @
  70.